|
Functional testing is a quality assurance (QA) process and a type of black-box testing that bases its test cases on the specifications of the software component under test. Functions are tested by feeding them input and examining the output, and internal program structure is rarely considered (not like in white-box testing).〔Kaner, Falk, Nguyen. ''Testing Computer Softw are''. Wiley Computer Publishing, 1999, p. 42. ISBN 0-471-35846-0.〕 Functional testing usually describes ''what'' the system does. Functional testing does not imply that you are testing a function (method) of your module or class. Functional testing tests a slice of functionality of the whole system. Functional testing differs from system testing in that functional testing "''verifies'' a program by checking it against ... design document(s) or specification(s)", while system testing "''validate()'' a program by checking it against the published user or system requirements" (Kaner, Falk, Nguyen 1999, p. 52). Functional testing has many types: * Smoke testing * Sanity testing * Regression testing * Usability testing 〔 ==Six Steps== Functional testing typically involves six steps # The identification of functions that the software is expected to perform # The creation of input data based on the function's specifications # The determination of output based on the function's specifications # The execution of the test case # The comparison of actual and expected outputs # To check whether the application works as per the customer need. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「functional testing」の詳細全文を読む スポンサード リンク
|